/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.ui.refactoring.actions; import org.eclipse.core.runtime.Assert; import org.eclipse.core.runtime.CoreException; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.text.ITextSelection; import org.eclipse.ui.IWorkbenchSite; import org.eclipse.ui.PlatformUI; import org.eclipse.jdt.core.ICompilationUnit; import org.eclipse.jdt.core.IJavaElement; import org.eclipse.jdt.core.IMethod; import org.eclipse.jdt.core.JavaModelException; import org.eclipse.jdt.core.refactoring.IJavaRefactorings; import org.eclipse.jdt.internal.corext.refactoring.RefactoringAvailabilityTester; import org.eclipse.jdt.internal.corext.refactoring.RefactoringExecutionStarter; import org.eclipse.jdt.internal.corext.refactoring.codingspectator.RefactoringGlobalStore; import org.eclipse.jdt.internal.corext.util.JavaModelUtil; import org.eclipse.jdt.ui.actions.SelectionDispatchAction; import org.eclipse.jdt.ui.actions.codingspectator.UnavailableRefactoringLogger; import org.eclipse.jdt.internal.ui.IJavaHelpContextIds; import org.eclipse.jdt.internal.ui.JavaPlugin; import org.eclipse.jdt.internal.ui.actions.ActionUtil; import org.eclipse.jdt.internal.ui.actions.SelectionConverter; import org.eclipse.jdt.internal.ui.javaeditor.EditorUtility; import org.eclipse.jdt.internal.ui.javaeditor.JavaEditor; import org.eclipse.jdt.internal.ui.javaeditor.JavaTextSelection; import org.eclipse.jdt.internal.ui.refactoring.RefactoringMessages; import org.eclipse.jdt.internal.ui.util.ExceptionHandler; /** * * @author Mohsen Vakilian, nchen - Captured unavailable invocations of the refactoring. * */ public final class MoveInstanceMethodAction extends SelectionDispatchAction { private JavaEditor fEditor; /** * Note: This constructor is for internal use only. Clients should not call this constructor. * * @param editor the java editor */ public MoveInstanceMethodAction(JavaEditor editor) { this(editor.getEditorSite()); fEditor= editor; setEnabled(SelectionConverter.canOperateOn(fEditor)); } public MoveInstanceMethodAction(IWorkbenchSite site) { super(site); setText(RefactoringMessages.MoveInstanceMethodAction_Move_Method); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.MOVE_ACTION); } /* * @see SelectionDispatchAction#selectionChanged(IStructuredSelection) */ public void selectionChanged(IStructuredSelection selection) { try { setEnabled(RefactoringAvailabilityTester.isMoveMethodAvailable(selection)); } catch (JavaModelException e) { // http://bugs.eclipse.org/bugs/show_bug.cgi?id=19253 if (JavaModelUtil.isExceptionToBeLogged(e)) JavaPlugin.log(e); setEnabled(false);//no ui } } public void selectionChanged(ITextSelection selection) { setEnabled(true); } /** * Note: This method is for internal use only. Clients should not call this method. */ public void selectionChanged(JavaTextSelection selection) { try { setEnabled(RefactoringAvailabilityTester.isMoveMethodAvailable(selection)); } catch (CoreException e) { setEnabled(false); } } private static IMethod getSingleSelectedMethod(IStructuredSelection selection) { if (selection.isEmpty() || selection.size() != 1) return null; Object first= selection.getFirstElement(); if (!(first instanceof IMethod)) return null; return (IMethod)first; } /* * @see SelectionDispatchAction#run(IStructuredSelection) */ public void run(IStructuredSelection selection) { try { //CODINGSPECTATOR RefactoringGlobalStore.getNewInstance().setStructuredSelection(selection); Assert.isTrue(RefactoringAvailabilityTester.isMoveMethodAvailable(selection)); IMethod method= getSingleSelectedMethod(selection); Assert.isNotNull(method); if (!ActionUtil.isEditable(fEditor, getShell(), method)) return; RefactoringExecutionStarter.startMoveMethodRefactoring(method, getShell()); } catch (JavaModelException e) { ExceptionHandler.handle(e, getShell(), RefactoringMessages.MoveInstanceMethodAction_dialog_title, RefactoringMessages.MoveInstanceMethodAction_unexpected_exception); } } /* (non-Javadoc) * Method declared on SelectionDispatchAction */ public void run(ITextSelection selection) { try { //CODINGSPECTATOR RefactoringGlobalStore.getNewInstance().setEditorSelectionInfo(EditorUtility.getEditorInputJavaElement(fEditor, false), selection); run(selection, SelectionConverter.getInputAsCompilationUnit(fEditor)); } catch (JavaModelException e) { ExceptionHandler.handle(e, getShell(), RefactoringMessages.MoveInstanceMethodAction_dialog_title, RefactoringMessages.MoveInstanceMethodAction_unexpected_exception); } } private void run(ITextSelection selection, ICompilationUnit cu) throws JavaModelException { Assert.isNotNull(cu); Assert.isTrue(selection.getOffset() >= 0); Assert.isTrue(selection.getLength() >= 0); if (!ActionUtil.isEditable(fEditor, getShell(), cu)) return; IMethod method= getMethod(cu, selection); if (method != null) { RefactoringExecutionStarter.startMoveMethodRefactoring(method, getShell()); } else { //CODINGSPECTATOR UnavailableRefactoringLogger.logUnavailableRefactoringEvent(IJavaRefactorings.MOVE_METHOD, RefactoringMessages.MoveInstanceMethodAction_No_reference_or_declaration); MessageDialog.openInformation(getShell(), RefactoringMessages.MoveInstanceMethodAction_dialog_title, RefactoringMessages.MoveInstanceMethodAction_No_reference_or_declaration); } } private static IMethod getMethod(ICompilationUnit cu, ITextSelection selection) throws JavaModelException { IJavaElement element= SelectionConverter.getElementAtOffset(cu, selection); if (element instanceof IMethod) return (IMethod)element; return null; } }